home *** CD-ROM | disk | FTP | other *** search
- From: Vtrap@msn.com (Ronald Bennett)
- Subject: RE: Help with simple code
- Date: 24 Jan 96 18:02:05 -0800
- References: <4dbak5$oij@ionews.io.org>
- Message-ID: <00001a80+00007168@msn.com>
- Path: news.msn.com!msn.com
- Newsgroups: comp.lang.c
- Organization: The Microsoft Network (msn.com)
-
- I think that your function 'pow' would have to be defined prior to
- your main function since it is not defined in the two standard
- libraries that were included in your program. Try writing a function
- called 'pow'. In that function you will have to write to formula you
- want to use in your main function. This will define the function
- 'pow'. Otherwise, 'pow' will be treated as a varible and therefore
- would have to be declared in the main fuction. I hope this answers
- your question.
-